home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cug172 / stdio.h < prev    next >
Text File  |  1986-02-05  |  918b  |  35 lines

  1. /*
  2.   HEADER: CUG     nnn.nn;
  3.   TITLE:     LEX - A Lexical Analyser Generator
  4.   VERSION:     1.0 for IBM-PC
  5.   DATE:      Jan 30, 1985
  6.   DESCRIPTION:     A Lexical Analyser Generator. From UNIX
  7.   KEYWORDS:     Lexical Analyser Generator YACC C PREP
  8.   SYSTEM:     IBM-PC and Compatiables
  9.   FILENAME:      STDIO.H
  10.   WARNINGS:     This program is not for the casual user. It will
  11.          be useful primarily to expert developers.
  12.   CRC:         N/A
  13.   SEE-ALSO:     YACC and PREP
  14.   AUTHORS:     Scott Guthery 11100 leafwood lane Austin, TX 78750
  15.   COMPILERS:     DESMET-C
  16.   REFERENCES:     UNIX Systems Manuals
  17. */
  18. /*    STDIO.H        Include file for C88 input/output.    */
  19.  
  20. /*    a 'FILE' is simply an integer is this implimentation    */
  21.  
  22. typedef int  FILE;
  23.  
  24. /*    Standard input, standard output and standard error.    */
  25.  
  26. #define stdin    0
  27. #define stdout    1
  28. #define    stderr    2
  29.  
  30. #define    NULL    0
  31. #define TRUE    1
  32. #define FALSE    0
  33. #define EOF        (-1)
  34. #define ERR        (-1)
  35.